home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dgebak.z / dgebak
Encoding:
Text File  |  2002-10-03  |  3.9 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))                                                          DDDDGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DGEBAK - form the right or left eigenvectors of a real general matrix by
  10.      backward transformation on the computed eigenvectors of the balanced
  11.      matrix output by DGEBAL
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE DGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV, INFO )
  15.  
  16.          CHARACTER      JOB, SIDE
  17.  
  18.          INTEGER        IHI, ILO, INFO, LDV, M, N
  19.  
  20.          DOUBLE         PRECISION SCALE( * ), V( LDV, * )
  21.  
  22. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  23.      These routines are part of the SCSL Scientific Library and can be loaded
  24.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  25.      directs the linker to use the multi-processor version of the library.
  26.  
  27.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  28.      4 bytes (32 bits). Another version of SCSL is available in which integers
  29.      are 8 bytes (64 bits).  This version allows the user access to larger
  30.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  31.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  32.      only one of the two versions; 4-byte integer and 8-byte integer library
  33.      calls cannot be mixed.
  34.  
  35. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  36.      DGEBAK forms the right or left eigenvectors of a real general matrix by
  37.      backward transformation on the computed eigenvectors of the balanced
  38.      matrix output by DGEBAL.
  39.  
  40. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  41.      JOB     (input) CHARACTER*1
  42.              Specifies the type of backward transformation required:  = 'N',
  43.              do nothing, return immediately; = 'P', do backward transformation
  44.              for permutation only; = 'S', do backward transformation for
  45.              scaling only; = 'B', do backward transformations for both
  46.              permutation and scaling.  JOB must be the same as the argument
  47.              JOB supplied to DGEBAL.
  48.  
  49.      SIDE    (input) CHARACTER*1
  50.              = 'R':  V contains right eigenvectors;
  51.              = 'L':  V contains left eigenvectors.
  52.  
  53.      N       (input) INTEGER
  54.              The number of rows of the matrix V.  N >= 0.
  55.  
  56.      ILO     (input) INTEGER
  57.              IHI     (input) INTEGER The integers ILO and IHI determined by
  58.              DGEBAL.  1 <= ILO <= IHI <= N, if N > 0; ILO=1 and IHI=0, if N=0.
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))                                                          DDDDGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      SCALE   (input) DOUBLE PRECISION array, dimension (N)
  75.              Details of the permutation and scaling factors, as returned by
  76.              DGEBAL.
  77.  
  78.      M       (input) INTEGER
  79.              The number of columns of the matrix V.  M >= 0.
  80.  
  81.      V       (input/output) DOUBLE PRECISION array, dimension (LDV,M)
  82.              On entry, the matrix of right or left eigenvectors to be
  83.              transformed, as returned by DHSEIN or DTREVC.  On exit, V is
  84.              overwritten by the transformed eigenvectors.
  85.  
  86.      LDV     (input) INTEGER
  87.              The leading dimension of the array V. LDV >= max(1,N).
  88.  
  89.      INFO    (output) INTEGER
  90.              = 0:  successful exit
  91.              < 0:  if INFO = -i, the i-th argument had an illegal value.
  92.  
  93. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  94.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  95.  
  96.      This man page is available only online.
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.